home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / plant0.zip / PLANT.POV < prev    next >
Text File  |  1993-10-07  |  458b  |  29 lines

  1. // Persistence of Vision Raytracer v2.0
  2. // Shape Test file
  3.  
  4. include "colors.inc"
  5.  
  6. camera {
  7.    location <0.0, 13, -21 >
  8.    look_at <0, 8, 0>
  9. }
  10.  
  11. object {       
  12.    light_source { <40, 100, -100> 
  13.    color White
  14.    }
  15. }
  16.  
  17. include "plant.inc"
  18. object{
  19.   plant 
  20.   //texture{YourTexture}
  21.       // for -t option
  22. }
  23.  
  24. object { plane { <0.0, 1.0, 0.0>, 0.0 }
  25.   pigment{ color red 1 green 0.75 blue 0.3}
  26.   finish{  ambient 0.3 diffuse 0.7}
  27. }  
  28.  
  29.